home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1989 / 05 / outchr.asm < prev    next >
Assembly Source File  |  1989-06-27  |  247b  |  24 lines

  1.     title    outchr
  2.     .model    small
  3.     .code
  4.     extrn    ms_dos:near
  5.     public    outchr
  6.  
  7. ;;    outchr
  8. ;
  9. ;    entry    AL    char
  10. ;    uses    AX
  11. ;
  12. outchr    proc
  13.     push    ax
  14.     push    dx
  15.     mov    ah,2
  16.     mov    dl,al
  17.     call    ms_dos
  18.     pop    dx
  19.     pop    ax
  20.     ret
  21. outchr    endp
  22.  
  23.             end
  24.